home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2000-10-01 | 1.4 KB | 61 lines |
- "FILE"="Xteq Systems X-Setup Plugin 5.0"
- "TYPE"="1"
- "COUNT"="5"
- "UIPATH"="Program Options\Microsoft Office\MS Office 2000\Visio 2000"
- "NAME"="Visio 2000 Information"
- "VERSION"="1.00"
- "LANGUAGE"="VBScript"
- "TEXT 1"="User"
- "TEXT 2"="Company"
- "TEXT 3"="Version"
- "TEXT 4"="Product ID"
- "TEXT 5"="Registered Key"
- "DESCRIPTION 1"="Plugin displays Visio 2000 user and program registered information."
- "DESCRIPTION 2"="NOTE: Information only; no changes possible."
- "AUTHOR"="Ojatex@aol.com"
- "CONTACTURL"="http://members.aol.com/ojatex/"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="For X-Setup program information, go to http://www.xteq.com."
- "COMMENT 2"="Thanks to CptSiskoX for settings."
-
- sP="HKLM\SOFTWARE\Visio\Visio 2000\"
- sV1="RegisteredOwner"
- sV2="RegisteredOrganization"
- sV3="CurrentlyRegisteredVersion"
- sV4="ProductID"
- sV5="RegisteredPKey"
-
- SUB Plugin_Initialize
-
-
- s=RegReadValue(sP & sV1)
- Call SetUIElement(1,s)
-
- s=RegReadValue(sP & sV2)
- Call SetUIElement(2,s)
-
- s=RegReadValue(sP & sV3)
- Call SetUIElement(3,s)
-
- s=RegReadValue(sP & sV4)
- Call SetUIElement(4,s)
-
- s=RegReadValue(sP & sV5)
- Call SetUIElement(5,s)
-
-
- ' end if
-
-
- Call Disable
- END SUB
-
- SUB Plugin_CheckData(ElementIndex)
- END SUB
-
- SUB Plugin_Apply(ElementIndex,ElementSubIndex)
- END SUB
-
- SUB Plugin_Terminate
- END SUB
-